375c508894d7cd6ac8012424cf12a4a18e401788,components/camel-jetty/src/main/java/org/apache/camel/component/jetty/CamelContinuationServlet.java,CamelContinuationServlet,service,#HttpServletRequest#HttpServletResponse#,50
Before Change
}
try {
if (log.isTraceEnabled()) {
log.trace("Resumed continuation and writing response for exchangeId: " + result.getExchangeId());
}
// now lets output to the response
consumer.getBinding().writeResponse(result, response);
After Change
}
try {
log.trace("Resumed continuation and writing response for exchangeId: {}", result.getExchangeId());
// now lets output to the response
consumer.getBinding().writeResponse(result, response);
} catch (IOException e) {